home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / lib / exc.ml < prev    next >
Encoding:
Text File  |  1993-09-24  |  103 b   |  6 lines  |  [TEXT/MPS ]

  1. (* Exceptions *)
  2.  
  3. let failwith s = raise (Failure s)
  4. and invalid_arg s = raise (Invalid_argument s)
  5. ;;
  6.